/* Products Section */
.products-section {
    background-color: #f9f9f9;
    padding-top: 20px;
}

.products-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* Product Card Styles */
.product-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 250px;
    object-fit: cover;
}

.card-body {
    text-align: center;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.card-text {
    font-size: 14px;
    color: #555;
}

/* Modal Styles */
.modal-body img {
    max-height: 450px;
    width: auto;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}



